home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / irccol1a / form1.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1998-10-08  |  1.7 KB  |  55 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    BackColor       =   &H80000008&
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   6795
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   11355
  9.    BeginProperty Font 
  10.       Name            =   "Terminal"
  11.       Size            =   9
  12.       Charset         =   255
  13.       Weight          =   400
  14.       Underline       =   0   'False
  15.       Italic          =   0   'False
  16.       Strikethrough   =   0   'False
  17.    EndProperty
  18.    LinkTopic       =   "Form1"
  19.    ScaleHeight     =   453
  20.    ScaleMode       =   3  'Pixel
  21.    ScaleWidth      =   757
  22.    StartUpPosition =   3  'Windows Default
  23.    WindowState     =   2  'Maximized
  24. Attribute VB_Name = "Form1"
  25. Attribute VB_GlobalNameSpace = False
  26. Attribute VB_Creatable = False
  27. Attribute VB_PredeclaredId = True
  28. Attribute VB_Exposed = False
  29. ' dont just rip me off! give me some help if ya can
  30. ' Not going into the technaclitys of this its To Difficult to explian.
  31. 'Email :familae@familae.screaming.net
  32. Private Irc_Window As New ChanWindow
  33. Private Sub Form_Click()
  34. Close #1
  35. Open "C:\torment\txt\DRAGON.txt" For Input As #1
  36. Dim data As String
  37. Line Input #1, data
  38. Irc_Window.Out Trim(data)
  39. Irc_Window.ScrWindowup Me, 15
  40. DoEvents
  41. Loop While Not EOF(1)
  42. Irc_Window.ScrWindowup Me, 20
  43. Irc_Window.Out "
  44. 4,0Hello
  45. 7 This is a MIRC Complient Text Parser
  46. 7 :) P
  47. Irc_Window.ScrWindowup Me, 27
  48. End Sub
  49. Private Sub Form_Load()
  50. Set Irc_Window.OwnerForm = Form1
  51. End Sub
  52. Private Sub Form_Paint()
  53. Irc_Window.Refresh
  54. End Sub
  55.